home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
AP Professional Graphics CD-ROM Library
/
AP Professional Graphics CD-ROM Library.iso
/
pc
/
unix
/
appendix
/
gemsii
/
bitcount
/
makefile
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Makefile
|
1992-09-17
|
172 b
|
11 lines
CFLAGS = -g
tester : test.c bit32.o
$(CC) $(CFLAGS) test.c -o tester bit32.o
bit32.o : bit32.c
$(CC) -c $(CFLAGS) bit32.c -o bit32.o
clean:
/bin/rm -f bit32.o tester